From 85107eee348fde0f38534d8a358425286dca3d31 Mon Sep 17 00:00:00 2001 From: "kfraser@localhost.localdomain" Date: Wed, 16 Aug 2006 16:14:03 +0100 Subject: [PATCH] [NET] front: Fix indentation of a comment. Signed-off-by: Keir Fraser --- .../drivers/xen/netfront/netfront.c | 40 +++++++++---------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/linux-2.6-xen-sparse/drivers/xen/netfront/netfront.c b/linux-2.6-xen-sparse/drivers/xen/netfront/netfront.c index dabf758583..b1db26bbf3 100644 --- a/linux-2.6-xen-sparse/drivers/xen/netfront/netfront.c +++ b/linux-2.6-xen-sparse/drivers/xen/netfront/netfront.c @@ -1259,26 +1259,26 @@ err: i = xennet_fill_frags(np, skb, &tmpq); - /* - * Truesize must approximates the size of true data plus - * any supervisor overheads. Adding hypervisor overheads - * has been shown to significantly reduce achievable - * bandwidth with the default receive buffer size. It is - * therefore not wise to account for it here. - * - * After alloc_skb(RX_COPY_THRESHOLD), truesize is set to - * RX_COPY_THRESHOLD + the supervisor overheads. Here, we - * add the size of the data pulled in xennet_fill_frags(). - * - * We also adjust for any unused space in the main data - * area by subtracting (RX_COPY_THRESHOLD - len). This is - * especially important with drivers which split incoming - * packets into header and data, using only 66 bytes of - * the main data area (see the e1000 driver for example.) - * On such systems, without this last adjustement, our - * achievable receive throughout using the standard receive - * buffer size was cut by 25%(!!!). - */ + /* + * Truesize must approximates the size of true data plus + * any supervisor overheads. Adding hypervisor overheads + * has been shown to significantly reduce achievable + * bandwidth with the default receive buffer size. It is + * therefore not wise to account for it here. + * + * After alloc_skb(RX_COPY_THRESHOLD), truesize is set to + * RX_COPY_THRESHOLD + the supervisor overheads. Here, we + * add the size of the data pulled in xennet_fill_frags(). + * + * We also adjust for any unused space in the main data + * area by subtracting (RX_COPY_THRESHOLD - len). This is + * especially important with drivers which split incoming + * packets into header and data, using only 66 bytes of + * the main data area (see the e1000 driver for example.) + * On such systems, without this last adjustement, our + * achievable receive throughout using the standard receive + * buffer size was cut by 25%(!!!). + */ skb->truesize += skb->data_len - (RX_COPY_THRESHOLD - len); skb->len += skb->data_len; -- 2.30.2